Platform Explorer / Nuxeo Platform 5.8

Extension point event-handlers

Documentation

Core Event Handlers bound to operations

Contribution Descriptors

  • Class: org.nuxeo.ecm.automation.core.events.EventHandler

Existing Contributions

Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.

  • nuxeo-social-workspace-core-5.8.jar
    <extension point="event-handlers" target="org.nuxeo.ecm.core.operation.OperationServiceComponent">
        <handler chainId="SocialWorkspaceCreatedChain" postCommit="false">
          <event>documentCreated</event>
          <filters>
            <doctype>SocialWorkspace</doctype>
          </filters>
        </handler>
      </extension>
  • nuxeo-jenkins-report-3.2.0.jar
    <extension point="event-handlers" target="org.nuxeo.ecm.core.operation.OperationServiceComponent">
        <handler chainId="JenkinsReportCreation">
          <event>emptyDocumentModelCreated</event>
          <filters>
            <doctype>JenkinsReport</doctype>
          </filters>
        </handler>
        <handler chainId="JenkinsReportModified">
          <event>aboutToCreate</event>
          <event>beforeDocumentModification</event>
          <filters>
            <doctype>JenkinsReport</doctype>
          </filters>
        </handler>
        <handler chainId="JenkinsReportsContainerCreation">
          <event>emptyDocumentModelCreated</event>
          <filters>
            <doctype>JenkinsReportsContainer</doctype>
          </filters>
        </handler>
      </extension>